home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
- <xsl:template match="/">
- <HTML>
-
- <title>Sentry Network Monitor Log File</title>
- <BODY>
- <center>
- <TABLE valign="top" border="0" cellspacing="1" cellpadding="2">
- <TR bgcolor="#b8dafc">
- <th style="font: 12pt verdana" nowrap="nowrap"> <h5><center>Time</center></h5></th>
- <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Message</center></h5> </th>
- <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Network name</center></h5></th>
- <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Object name</center></h5></th>
- <th style="font: 12pt verdana" nowrap="nowrap"><h5><center>Agent name</center></h5></th>
- </TR>
- <xsl:for-each select="SENTRYLOG/LOGITEM" order-by="-TIME">
- <TR valign="top" bgcolor="#EFEFEF">
- <TD style="font: 10pt verdana" nowrap="nowrap"><small><xsl:value-of select="TIME/YEAR"/>-<xsl:value-of select="TIME/MONTH"/>-<xsl:value-of select="TIME/DAY"/>
- <xsl:value-of select="TIME/HOUR"/>:<xsl:value-of select="TIME/MINUTE"/>:<xsl:value-of select="TIME/SECOND"/>
- </small></TD>
- <TD style="font: 9pt verdana"><small><xsl:value-of select="MESSAGE"/></small></TD>
- <TD style="font: 9pt verdana" nowrap="nowrap"><small><xsl:value-of select="NETWORK"/></small></TD>
- <TD style="font: 9pt verdana" nowrap="nowrap"><small><xsl:value-of select="OBJECTNAME"/></small></TD>
- <TD style="font: 9pt verdana" nowrap="nowrap"><small><xsl:value-of select="AGENTNAME"/></small></TD>
- </TR>
- </xsl:for-each>
- </TABLE>
- </center>
- </BODY>
- </HTML>
- </xsl:template>
- </xsl:stylesheet>
-